home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 42 / Mac Magazin and MacEasy Magazine CD - Issue 42.iso / Software / Mobiles Büro / Newton / Accordian 1.0b / ADF Folder / InBox.adf < prev    next >
Text File  |  1996-09-24  |  2KB  |  48 lines

  1. // In Box Application
  2. application "iobox" called "In Box" with options { "readonly" }
  3.  
  4. // Notes Soup
  5. //
  6. // InBox.adf file for RCU 2.1
  7. // version 0.1 09-03-96
  8. // by Paolo Alberto Casadio
  9. // e-mail: pacasadio@linknet.it
  10. // Compuserve: 72431,362
  11.  
  12. // In Box Soup
  13. soup "InBox" called "Messages in Box" of "iobox" range "IOdateRange"
  14.  
  15. overview "iobox:date" called "By Date" of "InBox" queries "timestamp" contains
  16.     {
  17.     column "Date" width 155 is timestamp
  18.     column "Message Title" width 200 is title
  19.     }
  20.     
  21. class "ioItem" called "Message" of "InBox" with options { "readonly" } contains
  22.     {
  23.     timestamp: datetime called "Date"
  24.     fromRef: entry called "Sender" contains 
  25.         {
  26.         name: entry called "Name" contains
  27.             {
  28.             first: string called "First"
  29.             last: string called "Last"
  30.             }
  31.         alias: string called "Alias"
  32.         email: string called "e-Mail"
  33.         }
  34.     title: string called "Title"
  35.     body: entry called "Body" contains
  36.         {
  37.         text: text called "Text"
  38.         }
  39.     }
  40.  
  41. range "IODateRange" called "All" is "<range> [ ... ]"
  42. range "IOdateRange" called "Today" is "<range> [ daystart ... daystart + 1d )"
  43. range "IOdateRange" called "This Week" is "<range> [ weekstart ... weekstart + 1w )"
  44. range "IOdateRange" called "This Month" is "<range> [ monthstart ... monthstart + 1m )"
  45. range "IOdateRange" called "Past Week" is "<range> [ weekstart - 1w... weekstart )"
  46. range "IOdateRange" called "Past Month" is "<range> [ monthstart - 1m... monthstart )"
  47. range "IOdateRange" called "Previous 60 Days" is "<range> [ daystart - 60d ... daystart )"
  48.